home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000313_news@columbia.edu_Wed Nov 30 22:54:07 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19556
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Dec 1994 08:03:18 -0500
  3. Received: by apakabar.cc.columbia.edu id AA01552
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Dec 1994 08:03:16 -0500
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!caen!hearst.acc.Virginia.EDU!murdoch!fulton.seas.Virginia.EDU!esh6h
  7. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  8. Subject: C-Kermit weirdness
  9. Message-Id: <D03rM7.37t@murdoch.acc.Virginia.EDU>
  10. Sender: usenet@murdoch.acc.Virginia.EDU
  11. Organization: University of Virginia
  12. Date: Wed, 30 Nov 1994 22:54:07 GMT
  13. Lines: 51
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. I wrote a C-Kermit script for someone here at work to log onto
  17. a machine via modem and send a mail and then log back off to
  18. minimize the time on the modem.  A command procedure (DCL)
  19. builds the commands that get executed by C-Kermit.
  20.  
  21. To make a long story short, he is trying to put things like
  22. ":-(" in the subject and it is causing problems.  Below is
  23. a test I performed that gives me the same error.
  24.  
  25. C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  26.  Copyright (C) 1985, 1994,
  27.   Trustees of Columbia University in the City of New York.
  28. Type ? or HELP for help.
  29. C-Kermit>def arglist echo 1=(\%1) 2=(\%2) 3=(\%3)
  30. C-Kermit>xif success {arglist {123},show macro arglist}
  31. 1=(123) 2=() 3=()
  32.  
  33. arglist = echo 1=(\%1) 2=(\%2) 3=(\%3)
  34. C-Kermit>xif success {arglist {(},show macro arglist}
  35. ?No keywords match - glist
  36.  
  37. -----------------------------
  38. I realize that the "(" is potentially bad and that is exactly
  39. what is causing the problem.  What can I do to alleviate
  40. this weirdness?
  41.  
  42. Also I noticed that my version of C-Kermit doesn't
  43. perform a LF when it does its first output (the above
  44. was slightly edited).  It really would have looked
  45. like this on my screen.
  46.  
  47. C-Kermit 5A(190), 4 Oct 94, for OpenVMS VAX
  48.  Copyright (C) 1985, 1994,
  49.   Trustees of Columbia University in the City of New York.
  50. Type ? or HELP for help.
  51. C-Kermit>def arglist echo 1=(\%1) 2=(\%2) 3=(\%3)
  52. 1=(123) 2=() 3=()ess {arglist {123},show macro arglist}
  53.  
  54. ------------------------
  55. Where after the "def arglist..." I did the same "xif" as
  56. shown above.  I imagine this is a small bug and not big
  57. deal to fix.  Just wanted to point it out.
  58.  
  59. Thanks for your help in advance.
  60.  
  61.     Erik
  62. --
  63. Erik Hatcher                           + "But every now and then we just have
  64. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves." 
  65.                                        |        - Werner Heisenberg
  66. ---------------------------------------+-------------------------------------